Skip to main content

Fetch Pix Scheduling

Fetch all scheduled Automatic Pix

Request

GET 'https://apisandbox.delbank.com.br/baas/api/v1/pix/automatic/scheduling'

Headers

NameDescription                            
AuthorizationRequired. API key

Query Parameters:

NameTypeDescription
flownumberRequired. Which journey to search for, 0 for payer or 1 for receiver
beneficiaryDocumentstringOptional. The document of the receiver (max 14 characters)
payerPersonTypenumberOptional. The type of person: 0 for Natural Person, 1 for Legal Person
payerDocumentstringOptional. The document of the sender (max 14 characters)
statusstringOptional. The status of the schedule
dueDateStartdateRequired. The start date of the query (Date format)
dueDateEnddateRequired. The end date of the query (Date format)
pagenumberOptional. The page number (Default: 1). Must be a positive number
pageSizenumberOptional. The amount of results returned per page (Default: 50, Max: 100)

Response

The status code 200 indicates success in the query.

Being succeeded, the return will have the following fields in Json format:

{
"data": [
{
"endToEndId": "E3822485720250610120000010000001",
"beneficiaryConciliationId": "RR4002892220250429ABCDE122131",
"scheduleStatus": "ACCEPTED",
"acceptRejectAt": "0001-01-01T00:00:00Z",
"requestAt": "2025-06-10T16:08:21.284Z",
"situationAt": "2025-07-11T15:03:32.027Z",
"processingStatus": "PENDING_USER",
"status": "PROCESSING",
"errorCode": null,
"errorCodeDescription": null,
"recurrenceId": "RR4002892220250429ABCDE122131",
"beneficiaryPspReceivedAt": "2025-06-10T15:54:39.494Z",
"dueDate": "2025-06-12",
"amount": 150.75,
"beneficiary": {
"ispb": "38224857",
"document": "03284584000162",
"name": "corporateName",
"branchNumber": "0001",
"accountType": "PAYMENT",
"accountNumber": "99999"
},
"payer": {
"ispb": "38224857",
"type": "NATURAL",
"document": "12345678901",
"branchNumber": "0001",
"accountNumber": "99998"
},
"infoBetweenCustomers": "Contrato: Teste Alisson - Assinatura Exclusive Ultra",
"schedulePurpose": "FIRST_ATTEMPT",
"cancellations": [
{
"cancellationId": "CA3822485720250616Jgs0xZD3uAV",
"requesterIspb": "38224857",
"recipientIspb": "38224857",
"cancellationRequesterType": "LEGAL",
"cancellationRequesterDocument": "03284584000162",
"cancellationReason": "REQUESTED_BY_PAYEE",
"cancellationAt": "2025-06-16T17:08:36.679Z",
"cancellationStatus": "ACCEPTED",
"errorCode": null,
"errorCodeDesc": null
}
]
}
],
"pagination": {
"pageNumber": 1,
"pageSize": 50,
"totalPages": 1,
"totalRecords": 1,
"hasPreviousPage": false,
"hasNextPage": false
}
}